home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / GraphEx / GraphEx.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  237 b   |  14 lines

  1. program GraphEx;
  2.  
  3.  
  4. uses
  5.   Borland.Vcl.Forms, GraphWin, BMPDlg;
  6.  
  7. [STAThread]
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.CreateForm(TNewBMPForm, NewBMPForm);
  12.   Application.Run;
  13. end.
  14.